Skip to main content
Version: 1.0.2

Report Request

The ReportRequest API enables to fetch various types of report

Method: POST

{{URL}}/rtp/rpc/TransactionService/ReportRequest

Headers

NameValue
Content-Typeapplication/json
Credential"Basic c3VwcG9ydCsxQG5ldHN5cy1pbmMuY29tOjM5ZDYxOGJkNTVmN5NWQxY2RlNDE5"
Signature"{{signature}}"

Example

Payload Parameters
ParameterDescription

accountProperty

Conditional Mandatory

String

Specific account type

(Mandatory if report type is ABAR)

Possible values:

"M" - Master Account

"S" – Sub Account

Example – "M"

accountRoutingNumber

Mandatory

String

Routing number of the account for which the report is requested

Example – "812812388"

connectionpartyId

Mandatory

String

Unique ID of the service provider that establishes a connection to the FedNow service

Example – "111222"

fromDate

Mandatory

String

The beginning date from where the report to be generated

Example – "2024-04-29"

processor

Optional

String

Payment channel through which the transaction happens

Example – "FEDNOW"

referenceNumber

Mandatory

String

Reference number of the report request message

Example – "REPORTREQ100011762784818"

reportType

Mandatory

String

Type of report

Possible values:

"AATR"

"IATR"

"AADR"

"ABAR"

Example – "AADR"

routingNumber

Mandatory

String

Routing number of the bank where the report is generated

Example – "011001331"

toDate

Mandatory

String

The end date till which the report to be generated

Example – "2024-04-29"


curl --location --globoff '{{URL}}/rtp/rpc/TransactionService/ReportRequest' \
--header 'Content-Type: application/json' \
--data '{"accountProperty":"M","accountRoutingNumber":"812812388","connectionpartyId":"111222","fromDate":"2024-04-29","processor":"FEDNOW","referenceNumber":"REPORTREQ100011762784818","reportType":"AADR","routingNumber":"011001331","toDate":"2024-04-29"}'

Request Body (Applicable only for FedNow)


{
"accountProperty": "M",
"accountRoutingNumber": "812812388",
"connectionpartyId": "111222",
"fromDate": "2024-04-29",
"processor": "FEDNOW",
"referenceNumber": "REPORTREQ100011762784818",
"reportType": "AADR",
"routingNumber": "011001331",
"toDate": "2024-04-29"
}

Response: 200

Response Parameters
ParameterDescription

message

String

Response message for the report

Example – "success"

rawMessage

String

Base64 Value of Received Response

Example – "Base64 Value of Received Response"

status

String

Status of the request

Example – "Accepted"

Response Body (Applicable only for FedNow)


{
"message": "success",
"rawMessage": "Base64 Value of Received Response",
"status": "SUCCESS"
}